@charset "UTF-8";
/*Allgemeine Einstellungen*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Lexend", sans-serif;
  background-color: rgba(255, 255, 255, 0.8980392157);
  width: 100%;
  height: 100%;
  overflow-x: auto;
}

p + p {
  padding-top: 1rem;
}

a:hover {
  color: blue;
}

a {
  color: green;
  text-decoration: none;
}

h3 {
  padding-bottom: 0.5rem;
  padding-top: 1.5rem;
  color: green;
}

/*Design mit Bezug auf einzelne Tage*/
img {
  justify-self: center;
}

h3 + iframe {
  padding-top: 0rem;
}

iframe {
  margin-top: 1rem;
  width: 560px;
  height: 315px;
}

@media (max-width: 600px) {
  iframe {
    width: 280px;
    height: 157.5px;
  }
}
.contentImage {
  width: 100%;
  height: auto;
}

ul {
  padding-left: 2rem;
}

p + ul {
  padding-top: 1rem;
}

/*Spezifische Einstellungen*/
/*Aufbau (Von oben nach unten):
    Display, Grid/Flex-Einstellungen, justify/align, padding/margin, weitere Positionierungs- und Größeneinstellungen, Rest
*/
body {
  display: grid;
  justify-content: center;
  justify-items: center;
  width: 100%;
  height: 100%;
  overflow-x: auto;
}
body header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100vw;
  height: 6rem;
  background-color: rgb(236, 236, 236);
  color: black;
}
body header .titleCont {
  display: flex;
  align-items: center;
  grid-column: 1/-1;
  grid-row: 1;
  position: relative;
}
body header .titleCont .imgCont {
  display: grid;
  justify-items: left;
  margin-right: auto;
  position: absolute;
  left: 10.38%;
  height: 100%;
}
body header .titleCont .imgCont .uniLogo {
  position: absolute;
  top: 20.05%;
  width: 15rem;
  height: 59.89583%;
}
body header .titleCont .h1Cont {
  position: absolute;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
}
body header .titleCont .h1Cont h1 {
  display: grid;
  text-align: center;
  padding-top: 0.4rem;
  margin-right: auto;
  height: 100%;
  width: 18rem;
}
body header .titleCont .backButton {
  text-align: center;
  position: absolute;
  right: 1%;
  width: 10rem;
}
body header .titleCont a {
  display: flex;
  justify-content: right;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: black;
  font-size: 1.5rem;
}
@media (max-width: 600px) {
  body header .titleCont {
    justify-content: left;
    padding-left: 0;
  }
  body header .titleCont .imgCont .uniLogo {
    margin-left: 1rem;
    top: 10%;
    width: 5.5rem;
    height: auto;
  }
  body header .titleCont .backButton {
    margin-bottom: 1rem;
    width: 7rem;
  }
  body header .titleCont .backButton a {
    font-size: 1rem;
  }
}
body main {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  justify-content: center;
  padding-left: 15%;
  padding-right: 15%;
  padding-top: 2rem;
  width: 100vw;
  overflow-wrap: break-word;
  /*.contentImage{
      width:100%;
      height:auto;
  }*/
}
body main h2 {
  padding-bottom: 1rem;
  color: green;
}
body main div {
  width: 75vw;
  overflow-wrap: break-word;
}
body main p {
  text-align: left;
  width: 75vw;
  overflow-wrap: break-word;
}
body main video {
  padding-top: 2%;
}
@media (max-width: 600px) {
  body main {
    width: 75vw;
  }
  body main p {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 75vw;
    overflow-wrap: break-word;
  }
}
body footer {
  display: grid;
  grid-template-rows: auto auto;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 2rem;
  position: relative;
  bottom: 0;
  width: 100vw;
  background-color: rgb(236, 236, 236);
  font-size: 0.8rem;
}
body footer .textCont {
  display: grid;
  justify-items: center;
  justify-self: center;
  grid-column: 1/-1;
  grid-row: 1;
}
body footer .logoCont {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.75rem;
  position: relative;
  grid-column: 1;
  grid-row: 2;
}
body footer .logoCont .otherLogo {
  width: 10%;
  height: auto;
}
body footer .logoCont .ubbits {
  padding-left: 0.5rem;
  padding-top: 0.1rem;
  width: 9%;
  height: auto;
}

@media (max-width: 1150px) {
  footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  footer .textCont {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }
  footer .logoCont .otherLogo {
    width: 22% !important;
  }
  footer .logoCont .ubbits {
    width: 21% !important;
  }
}
/*footer{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-top: 2rem;
        position: relative;
        bottom: 0;
        width: 100vw;
        background-color: rgba(236, 236, 236);
        font-size: 0.8rem;

        .logoCont{
            display: flex;
            align-items:center;
            position:relative;

            .otherLogo{
                width:10%;
                height:auto;
            }
        }

        .textCont{
            display: grid;
            justify-items: center;
            position:absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        a{
            text-decoration: none;
            color:green;
        }
    }
}*//*# sourceMappingURL=day.css.map */